home *** CD-ROM | disk | FTP | other *** search
/ By Popular Request 2.0 / By Popular Request 2.0 (Arsenal Computer).ISO / amiga_5 / pin391bs.lha / pine3.91 / lpr.c < prev    next >
C/C++ Source or Header  |  1995-04-05  |  220b  |  18 lines

  1. #include <stdio.h>
  2. /* lpr for amiga */
  3.  
  4. int main() {
  5.     FILE *out;
  6.     char ch;
  7.  
  8.     out = fopen("PRT:","w");
  9.  
  10.     while (!feof(stdin)) {
  11.     ch=fgetc(stdin);
  12.     fputc(ch,out);
  13.     }
  14.     fputc('\f',out);
  15.     fclose(out);
  16. }
  17.  
  18.